home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / libast / regexp.h < prev    next >
C/C++ Source or Header  |  2005-10-18  |  3KB  |  71 lines

  1. /*
  2.  * Copyright (C) 1997-2004, Michael Jennings
  3.  *
  4.  * Permission is hereby granted, free of charge, to any person obtaining a copy
  5.  * of this software and associated documentation files (the "Software"), to
  6.  * deal in the Software without restriction, including without limitation the
  7.  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  8.  * sell copies of the Software, and to permit persons to whom the Software is
  9.  * furnished to do so, subject to the following conditions:
  10.  *
  11.  * The above copyright notice and this permission notice shall be included in
  12.  * all copies of the Software, its documentation and marketing & publicity
  13.  * materials, and acknowledgment shall be given in the documentation, materials
  14.  * and software packages that this Software was used.
  15.  *
  16.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17.  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19.  * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  20.  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  21.  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  22.  */
  23.  
  24. #ifndef _LIBAST_REGEXP_H_
  25. #define _LIBAST_REGEXP_H_
  26.  
  27. /* Cast an arbitrary object pointer to a regexp. */
  28. #define SPIF_REGEXP(obj)                ((spif_regexp_t) (obj))
  29.  
  30. /* Check to see if a pointer references a regexping object. */
  31. #define SPIF_OBJ_IS_REGEXP(obj)         (SPIF_OBJ_IS_TYPE(obj, regexp))
  32.  
  33. /* Check for NULL regexp object */
  34. #define SPIF_REGEXP_ISNULL(s)           SPIF_OBJ_ISNULL(SPIF_OBJ(s))
  35.  
  36. #define SPIF_REGEXP_NEW(type)           SPIF_REGEXP((SPIF_CLASS(SPIF_CLASS_VAR(type)))->noo())
  37. #define SPIF_REGEXP_INIT(obj)           SPIF_OBJ_INIT(obj)
  38. #define SPIF_REGEXP_DONE(obj)           SPIF_OBJ_DONE(obj)
  39. #define SPIF_REGEXP_DEL(obj)            SPIF_OBJ_DEL(obj)
  40. #define SPIF_REGEXP_SHOW(obj, b, i)     SPIF_OBJ_SHOW(obj, b, i)
  41. #define SPIF_REGEXP_COMP(o1, o2)        SPIF_OBJ_COMP(o1, o2)
  42. #define SPIF_REGEXP_DUP(obj)            SPIF_OBJ_DUP(obj)
  43. #define SPIF_REGEXP_TYPE(obj)           SPIF_OBJ_TYPE(obj)
  44.  
  45. SPIF_DECL_OBJ(regexp) {
  46.     SPIF_DECL_PARENT_TYPE(str);
  47.     spif_ptr_t data;
  48.     int flags;
  49. };
  50.  
  51. extern spif_class_t SPIF_CLASS_VAR(regexp);
  52. extern spif_regexp_t spif_regexp_new(void);
  53. extern spif_regexp_t spif_regexp_new_from_str(spif_str_t);
  54. extern spif_regexp_t spif_regexp_new_from_ptr(spif_charptr_t);
  55. extern spif_bool_t spif_regexp_del(spif_regexp_t);
  56. extern spif_bool_t spif_regexp_init(spif_regexp_t);
  57. extern spif_bool_t spif_regexp_init_from_str(spif_regexp_t, spif_str_t);
  58. extern spif_bool_t spif_regexp_init_from_ptr(spif_regexp_t, spif_charptr_t);
  59. extern spif_bool_t spif_regexp_done(spif_regexp_t);
  60. extern spif_regexp_t spif_regexp_dup(spif_regexp_t);
  61. extern spif_cmp_t spif_regexp_comp(spif_regexp_t, spif_regexp_t);
  62. extern spif_str_t spif_regexp_show(spif_regexp_t, spif_charptr_t, spif_str_t, size_t);
  63. extern spif_classname_t spif_regexp_type(spif_regexp_t);
  64. extern spif_bool_t spif_regexp_compile(spif_regexp_t);
  65. extern spif_bool_t spif_regexp_matches_str(spif_regexp_t, spif_str_t);
  66. extern spif_bool_t spif_regexp_matches_ptr(spif_regexp_t self, spif_charptr_t subject);
  67. extern int spif_regexp_get_flags(spif_regexp_t);
  68. extern spif_bool_t spif_regexp_set_flags(spif_regexp_t, spif_charptr_t);
  69.  
  70. #endif /* _LIBAST_REGEXP_H_ */
  71.